home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Source / Rtl / Common / ComConst.pas next >
Encoding:
Pascal/Delphi Source File  |  2001-05-22  |  1.6 KB  |  37 lines

  1. { *********************************************************************** }
  2. {                                                                         }
  3. { Delphi Runtime Library                                                  }
  4. {                                                                         }
  5. { Copyright (c) 1999-2001 Borland Software Corporation                    }
  6. {                                                                         }
  7. { *********************************************************************** }
  8.  
  9. unit ComConst;
  10.  
  11. interface
  12.  
  13. resourcestring
  14.   SCreateRegKeyError = 'Error creating system registry entry';
  15.   SOleError = 'OLE error %.8x';
  16.   SObjectFactoryMissing = 'Object factory for class %s missing';
  17.   STypeInfoMissing = 'Type information missing for class %s';
  18.   SBadTypeInfo = 'Incorrect type information for class %s';
  19.   SDispIntfMissing = 'Dispatch interface missing from class %s';
  20.   SNoMethod = 'Method ''%s'' not supported by automation object';
  21.   SVarNotObject = 'Variant does not reference an automation object';
  22.   STooManyParams = 'Dispatch methods do not support more than 64 parameters';
  23.   SDCOMNotInstalled = 'DCOM not installed';
  24.   SDAXError = 'DAX Error';
  25.  
  26.   SAutomationWarning = 'COM Server Warning';
  27.   SNoCloseActiveServer1 = 'There are still active COM objects in this ' +
  28.     'application.  One or more clients may have references to these objects, ' +
  29.     'so manually closing ';
  30.   SNoCloseActiveServer2 = 'this application may cause those client ' +
  31.     'application(s) to fail.'#13#10#13#10'Are you sure you want to close this ' +
  32.     'application?';
  33.  
  34. implementation
  35.  
  36. end.
  37.